DataSource for Entity Framework in WPF
C1.LiveLinq.Indexing Namespace / Index<T> Class / FindGreater Method
Minimum key value to search for.
If true, the result includes items with the specified key value. Otherwise, the result only includes those with keys strictly greater than the specified value.
Optionally specifies the order of the key values to sort the result (C1.LiveLinq.Order.Unordered if sorting is not required).

In This Topic
    FindGreater Method (Index<T>)
    In This Topic

    Finds items with keys greater than the specified value.

    Implements IIndexScanner(T).FindGreater(object,bool,Order)

    Syntax
    'Declaration
     
    Public Function FindGreater( _
       ByVal key As Object, _
       ByVal inclusive As Boolean, _
       ByVal order As Order _
    ) As IndexQuery(Of T)
    public IndexQuery<T> FindGreater( 
       object key,
       bool inclusive,
       Order order
    )

    Parameters

    key
    Minimum key value to search for.
    inclusive
    If true, the result includes items with the specified key value. Otherwise, the result only includes those with keys strictly greater than the specified value.
    order
    Optionally specifies the order of the key values to sort the result (C1.LiveLinq.Order.Unordered if sorting is not required).

    Return Value

    An object enumerating all items whose key values are greater than the specified value.
    See Also